Used to print messages to the screen, and turn batch file displaying on or off.
echo [on|off] echo message
echo [on|off]With echo on, command lines in the batch file are displayed as they are run. With echo off they are hidden. This does not affect the output of the command itself.
echo messageDisplays the given message.
@rem this line won't output a single thing.